home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc20
/
gemfsc20.lzh
/
GEMFUNCS
/
RCCOPY.C
< prev
next >
Wrap
Text File
|
1993-03-07
|
461b
|
15 lines
/**************************************************************************
* RCCOPY.C - Copy a rectangle (or any 2 longwords).
* we cheat bigtime here: we don't include any headers, and thus get
* away with totally lying about the types of the two pointer args.
*************************************************************************/
void rc_copy(psrce, pdest)
long *psrce;
long *pdest;
{
pdest[0] = psrce[0];
pdest[1] = psrce[1];
}